.NET Framework Class Library |
Task<(Of <(TResult>)>) Constructor (Func<(Of <(Object, TResult>)>), Object, CancellationToken, TaskCreationOptions) |
Task<(Of <(TResult>)>) Class See Also Send Feedback |
Initializes a new Task<(Of <(TResult>)>) with the specified action, state, and options.
Namespace:
System.Threading.Tasks
Assembly:
System.Threading (in System.Threading.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Sub New ( _ function As Func(Of Object, TResult), _ state As Object, _ cancellationToken As CancellationToken, _ creationOptions As TaskCreationOptions _ ) |
C# |
---|
public Task( Func<Object, TResult> function, Object state, CancellationToken cancellationToken, TaskCreationOptions creationOptions ) |
Parameters
- function
- Type: System..::.Func<(Of <(Object, TResult>)>)
The delegate that represents the code to execute in the task. When the function has completed, the task's Result property will be set to return the result value of the function.
- state
- Type: System..::.Object
An object representing data to be used by the function.
- cancellationToken
- Type: System.Threading..::.CancellationToken
The CancellationToken to be assigned to the new task.
- creationOptions
- Type: System.Threading.Tasks..::.TaskCreationOptions
The TaskCreationOptions used to customize the task's behavior.
Exceptions
Exception | Condition |
---|---|
System..::.ArgumentException | The function argument is null. |
System..::.ArgumentOutOfRangeException | The creationOptions argument specifies an invalid value for TaskCreationOptions. |
System..::.ObjectDisposedException | The provided CancellationToken has already been disposed. |